Before igb PF driver is unloaded, dom0 doesn't unload igbvf driver
automatically. When igb drver is unloaded, it invokes the
PHYSDEVOP_manage_pci_remove hypercall to remove the VFs and xen frees
the msi irqs by pci_cleanup_msi() -> ... -> dynamic_irq_cleanup() and
sets the desc->action to NULL. igbvf driver knows the VF is
disappearing via a hook ndo_stop() in dev_close() and tries to unbind
the pirq and xen would crash as the desc->action is NULL now.
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
BUG_ON(!(desc->status & IRQ_GUEST));
+ if ( unlikely((desc->status | IRQ_DISABLED) && (desc->action == NULL)) )
+ {
+ dprintk(XENLOG_G_WARNING, "dom%d: pirq %d: desc->action is NULL!\n",
+ d->domain_id, pirq);
+ return NULL;
+ }
+
action = (irq_guest_action_t *)desc->action;
irq = desc - irq_desc;
goto out;
action = (irq_guest_action_t *)desc->action;
+ if ( unlikely((desc->status | IRQ_DISABLED) && (desc->action == NULL)) )
+ {
+ dprintk(XENLOG_G_WARNING, "dom%d: pirq %d: desc->action is NULL!\n",
+ d->domain_id, irq);
+ goto out;
+ }
+
for ( i = 0; (i < action->nr_guests) && (action->guest[i] != d); i++ )
continue;
if ( i == action->nr_guests )